All Questions
Tagged with clean-architectureenterprise-architecture
11 questions
2votes
2answers
348views
Advanced Scenarios in Clean Architecture
We have a very complex and mature ASP.NET web application that is about 20 years old and has 5 million lines of code spread across roughly 30 project in a single monolithic solution. It's running on ....
-2votes
1answer
434views
Is it OK to use a Command Sourcing instead of Event Sourcing? Replay events in Commands-Repositories
I have a system that uses a graph database without any ORM, mapper or tool that tracks entity changes, like EntityFramework. I'm not using domain entities, instead I have an Event that calls changes ...
0votes
1answer
211views
API controllers modeling
I'm developing an API with ASP.NET, but I'm having some questions about the best way I should develop the controller layer for the products. I'm having these questions because each product will have ...
2votes
2answers
2kviews
If Entities, in the Clean Architecture, are enterprise wide rules how different applications consume them?
In this post, Uncle Bob writes: Entities encapsulate Enterprise wide business rules. An entity can be an object with methods, or it can be a set of data structures and functions. It doesn’t matter so ...
7votes
1answer
4kviews
Clean Architecture - Controllers and Presenters
I am having a hard time trying to wrap my head around the relationship between Controllers and Presenters in Uncle Bob's Clean Architecture. In most of his videos, he talks too little about ...
1vote
0answers
212views
Socket.io behind api gateway
So the architecture I am currently working with, we have an api-gateway that gets all the requests and publishes them to our Eventsystem/ or directly to our essential services(auth, etc). Now we want ...
1vote
2answers
2kviews
How to organize database access logic for the infrastructure and application layer when avoiding ORM tools?
I'm trying create a .NET Core project and followed some guides to create a basic architecture Jason Taylor - Clean Architecture with ASP.NET Core 3.0 Sample project Clean Architecture Template I'm not ...
3votes
2answers
652views
Architecture for real time updates from the data in file system
I am trying to revamp my legacy application to make it scalable and performant. Its current architecture is something like this Consider a short-lived script that gets invocated 500k+ times a day, ...
10votes
1answer
4kviews
How & Should we use Clean Architecture in Front-end?
Just a little explanation: "I'm used to be a solo front-end developer in my company and using default folder-structure and way of coding which vue-cli provided, it is good for a solo developer and ...
12votes
3answers
17kviews
Should business logic be in the app or in the backend?
I've recently started applying the Clean Architecture while developing an Android application. And so I divided my application in 4 different parts. Data layer Contains the implementation of ...
1vote
1answer
109views
Common Code for Transformation of an Entity
My api is exposing information centering around an entity Company. Companies are complex, and can contain Vendors directly, or can contain sub-companies which contain vendors themselves. A consumer of ...